home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 8: LINUX Games / Linux Cubed Series 8 - LINUX Games.iso / games / video / zapem-0.000 / zapem-0 / zapem / rnd.c < prev    next >
C/C++ Source or Header  |  1995-02-22  |  86b  |  8 lines

  1. #include <stdlib.h>
  2.  
  3. int rnd( int my_range)
  4. {
  5.         return (rand() % my_range);
  6. }
  7.  
  8.